home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / kaffe / soft.h < prev    next >
C/C++ Source or Header  |  1996-02-11  |  898b  |  44 lines

  1. /*
  2.  * soft.h
  3.  * Soft instructions available.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  12.  */
  13.  
  14. #ifndef __soft_h
  15. #define __soft_h
  16.  
  17. void soft_unimplemented();
  18.  
  19. void soft_frem();
  20. void soft_drem();
  21. void soft_fcmpl();
  22. void soft_fcmpg();
  23. void soft_dcmpl();
  24. void soft_dcmpg();
  25. void soft_multianewarray();
  26. void soft_new();
  27. void soft_newarray();
  28. void soft_anewarray();
  29. void soft_athrow();
  30. void soft_checkcast();
  31. void soft_instanceof();
  32. void soft_lookupmethod();
  33. void soft_monitorenter();
  34. void soft_monitorexit();
  35. void soft_lmul();
  36. void soft_ldiv();
  37. void soft_lrem();
  38. void soft_lshl();
  39. void soft_lshr();
  40. void soft_lushr();
  41. void soft_lcmp();
  42.  
  43. #endif
  44.